generalize$31248$ - definição. O que é generalize$31248$. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é generalize$31248$ - definição

Generalize Type

generalise         
  • When the mind makes a generalization, it extracts the essence of a concept based on its analysis of similarities from many discrete objects. The resulting simplification enables higher-level thinking.
FORM OF ABSTRACTION WHEREBY COMMON PROPERTIES OF SPECIFIC INSTANCES ARE FORMULATED AS GENERAL CONCEPTS OR CLAIMS
Generalisation; Generalise; Generalize; Generalizing; Generalising; Generalised; Generalized; Generalization (mathematics); General case; Generalisations; Generalizations
Generalization         
  • When the mind makes a generalization, it extracts the essence of a concept based on its analysis of similarities from many discrete objects. The resulting simplification enables higher-level thinking.
FORM OF ABSTRACTION WHEREBY COMMON PROPERTIES OF SPECIFIC INSTANCES ARE FORMULATED AS GENERAL CONCEPTS OR CLAIMS
Generalisation; Generalise; Generalize; Generalizing; Generalising; Generalised; Generalized; Generalization (mathematics); General case; Generalisations; Generalizations
·noun A general inference.
II. Generalization ·noun The act or process of generalizing; the act of bringing individuals or particulars under a genus or class; deduction of a general principle from particulars.
generalize         
  • When the mind makes a generalization, it extracts the essence of a concept based on its analysis of similarities from many discrete objects. The resulting simplification enables higher-level thinking.
FORM OF ABSTRACTION WHEREBY COMMON PROPERTIES OF SPECIFIC INSTANCES ARE FORMULATED AS GENERAL CONCEPTS OR CLAIMS
Generalisation; Generalise; Generalize; Generalizing; Generalising; Generalised; Generalized; Generalization (mathematics); General case; Generalisations; Generalizations
(generalizes, generalizing, generalized)
Note: in BRIT, also use 'generalise'
1.
If you generalize, you say something that seems to be true in most situations or for most people, but that may not be completely true in all cases.
'In my day, children were a lot better behaved'.-'It's not true, you're generalizing'...
It's hard to generalize about Cole Porter because he wrote so many great songs that were so varied.
VERB: V, V prep
2.
If you generalize something such as an idea, you apply it more widely than its original context, as if it was true in many other situations.
A child first labels the household pet cat as a 'cat' and then generalises this label to other animals that look like it.
VERB: V n across/to n

Wikipédia

Type generalization

Type generalization is a technique commonly used in refactoring. The idea is to draw on the benefits of object-orientation and make more-generalized types, thus enabling more code sharing, leading to better maintainability as there is less code to write. Too-general code can, however, become completely useless, leading to spaghetti code doing effectively nothing.

Type generalization refers to making more general or more abstract some subset of the traits of a specific type. A superclass has wider use than a specific subclass, and so is more 'general'.

An example of generalizing a type would be moving a method from a child to a parent class for common use by all the parent class' children, not just the original child.

Another example, in the Java programming language, would be access to an object via an interface which isn't tied into a specific implementation of that interface.